@import url("https://fonts.googleapis.com/css2?family=Roboto+Condensed:wght@300;400;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap");

/* font-family: 'Roboto Condensed', sans-serif; */
/* font-family: 'Poppins', sans-serif; */
* {
	padding: 0;
	box-sizing: border-box;
}

:root {
	--black: #333333;
	--dark-blue: #0756a5;
	--light-blue: rgba(7, 86, 165, 0.06);
	--white: #fff;
	--orange-bg: linear-gradient(90deg, #FF671E 0%, #FF5500 100%);
	--poppins: "Poppins", sans-serif;
	--roboto-condensed: "Roboto Condensed", sans-serif;
}

html {
	scroll-behavior: smooth !important;
}

/* <!-- ========== SMARTSTICKERS PAGE CSS STARTED========== --> */

/* <!-- ========== SMARTSTICKERS BANNER SECTION CSS ========== --> */
.smartstickers-hero-section {
	padding-top: 127px;
}
.smartstickers-hero-section .smartstickers-hero-inner-section {
    padding-top: 32px;
	background: url(../images/smart-stickers-hero-bg.webp);
	background-position: center bottom;
	background-size: cover;
}
.smartstickers-hero-section .content {
	padding: 70px 0 90px 0; 
}

.smartstickers-hero-section .content h1 {
	font-size: 48px;
	line-height: 51px;
	font-weight: 800;
	color: var(--dark-blue);
	font-family: var(--roboto-condensed);
    margin-bottom: 20px;
}

.smartstickers-hero-section .content h1 span{
	font-size: 40px;
	line-height: 51px;
	font-weight: 500;
	color: var(--black);
	font-family: var(--roboto-condensed);
}

.smartstickers-hero-section .content p {
	font-size: 16px;
	line-height: 26px;
	font-weight: 400;
	color: var(--black);
	font-family: var(--poppins);
    margin-bottom: 5px;
}

.smartstickers-hero-section .image-wrapper {
    height: 100%;
    display: flex;
    align-items: end;
    justify-content: center;
}


/* <!-- ========== SMARTSTICKERS SIMPLE SECTION CSS ========== --> */

.smartstickers-simple-section {
	padding: 90px 0;
	background: var(--white);
}

.smartstickers-simple-section .row{
    align-items: center;
}

.smartstickers-simple-section .content h3{
    font-size: 32px;
	line-height: 36px;
	font-weight: 700;
	color: var(--black);
	font-family: var(--roboto-condensed);
	margin: 0 0 50px 0;
}

.smartstickers-simple-section .content h3 span{
    color: var(--dark-blue);
}

.smartstickers-simple-section .feature-wrapper{
    display: flex;
    flex-direction: column;
    gap: 70px;
}

.smartstickers-simple-section .feature-wrapper .feature{
    display: flex;
    align-items: start;
    gap: 15px;
}

.smartstickers-simple-section .feature-wrapper .feature .text-wrapper{
    max-width: 367px;
}

.smartstickers-simple-section .feature-wrapper .feature .text-wrapper h4{
    font-size: 22px;
	line-height: 26px;
	font-weight: 700;
	color: var(--black);
	font-family: var(--roboto-condensed);
	margin-bottom: 12px;
}

.smartstickers-simple-section .feature-wrapper .feature .text-wrapper p{
    font-size: 16px;
	line-height: 26px;
	font-weight: 400;
	color: var(--black);
	font-family: var(--poppins);
	margin-bottom: 0;
}

.smartstickers-simple-section .feature-wrapper .feature .text-wrapper p strong{
	font-weight: 600;
}

.smartstickers-simple-section .image-wrapper{
    text-align: center;
}

.smartstickers-simple-section .video-wrapper {
	padding: 0px;
	max-width: 356px;
	margin: 0 auto;
	position: relative;
	text-align: center;
    width: 100%;
}

.smartstickers-simple-section .circle-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 530px; 
    height: 530px; 
    background-color: rgba(7, 86, 165, 0.05);
    border-radius: 50%;
    z-index: 0;
}

.smartstickers-simple-section .video-thumbnail {
	position: relative;
	cursor: pointer;
	display: flex;
    width: 100%;
	align-items: center;
	justify-content: center;
    z-index: 1;
}

.smartstickers-simple-section .play-button {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 60px;
	height: 60px;
	cursor: pointer;
	z-index: 2;
	transition: transform 0.3s ease;
}

.smartstickers-simple-section .play-button:hover {
	transform: translate(-50%, -50%) scale(1.1);
}

.smartstickers-simple-section .smartstickers-video {
	display: none;
	width: 100%;
	height: auto;
	border-radius: 25px;
	border: 9px solid #E8F4FF;
	background: var(--dark-blue) border-box;
    padding: 6px;
    z-index: 1;
    position: relative;
}

/* <!-- ========== SMARTSTICKERS TODAY SECTION CSS ========== --> */

.smartstickers-today-section .smartstickers-today-inner-section {
    padding: 90px 0 50px 0;
	background: url(../images/smart-stickers-today-bg.webp);
	background-position: bottom right;
	background-size: cover;
}
.smartstickers-today-section .content {
    max-width: 418px;
}

.smartstickers-today-section .content h3 {
	font-size: 32px;
	line-height: 36px;
	font-weight: 700;
	color: var(--black);
	font-family: var(--roboto-condensed);
    margin-bottom: 30px;
}

.smartstickers-today-section .content h3 span{
	color: var(--dark-blue);
}

.smartstickers-today-section .content p {
	font-size: 16px;
	line-height: 26px;
	font-weight: 400;
	color: var(--black);
	font-family: var(--poppins);
    margin-bottom: 25px;
}

.smartstickers-today-section .content p strong{
    font-weight: 600;
}

.smartstickers-today-section .content p span{
    display: block;
    margin-top: 25px;
}

.smartstickers-today-section .content a {
    display: inline-block;
    text-align: center;
    width: 232px;
    border-radius: 70px;
    padding: 10px 26px;
    background: linear-gradient(90deg, #FF671E 0%, #FF5500 100%);
    color: var(--white);
    font-size: 24px;
    line-height: 28px;
    font-weight: 700;
    font-family: var(--roboto-condensed);
    cursor: pointer;
}

.smartstickers-today-section .content a:hover{
    transform: translateY(-8px);
    transition: all 0.3s ease-in-out;
}

.smartstickers-today-section .image-wrapper {
    text-align: left;
}


/* <!-- ========== SMARTSTICKERS WHY SECTION CSS ========== --> */

.smartstickers-why-section .smartstickers-why-inner-section {
	padding: 90px 0; 
	background: var(--white);
}
.smartstickers-why-section .content {
	text-align: center;
}

.smartstickers-why-section .content h2 {
	font-size: 32px;
	line-height: 36px;
	font-weight: 700;
	color: var(--black);
	font-family: var(--roboto-condensed);
	text-align: center;
	margin: 0 auto 55px;
}

.smartstickers-why-section .content h2 span{
    color: var(--dark-blue);
}

.smartstickers-why-section .ss-cards-wrapper{
    display: flex;
    align-items: start;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
}

.smartstickers-why-section .ss-card{
    width: calc(50% - 25px);
    border-radius: 16px;
    height: 323px;
    padding: 25px 30px;
}

.smartstickers-why-section .ss-card-1{
	background: url(../images/smart-stickers-why-img-1.webp) top right / cover no-repeat;
}

.smartstickers-why-section .ss-card-2{
	background: url(../images/smart-stickers-why-img-2.webp) top right / cover no-repeat;
}

.smartstickers-why-section .ss-card-3{
	background: url(../images/smart-stickers-why-img-3.webp) top right / cover no-repeat;
}

.smartstickers-why-section .ss-card-4{
	background: url(../images/smart-stickers-why-img-4.webp) top right / cover no-repeat;
}

.smartstickers-why-section .ss-card .text-content{
    padding-top: 150px;
    text-align: left;
}

.smartstickers-why-section .ss-card .text-content h4{
	font-size: 22px;
	line-height: 26px;
	font-weight: 700;
	color: #000000;
	font-family: var(--roboto-condensed);
    margin-bottom: 12px;
    max-width: 225px;
}

.smartstickers-why-section .ss-card .text-content p{
	font-size: 18px;
	line-height: 26px;
	font-weight: 400;
	color: #000000;
	font-family: var(--poppins);
    margin-bottom: 0;
}

.smartstickers-why-section .ss-card .text-content p strong{
	font-weight: 500;
}


/***************************************************************/
/* <!-- ========== RESPONSIVE MEDIA QUERIES CSS ========== --> */
/***************************************************************/

/* <!-- === RESPONSIVE 1198px STARTS HERE === --> */

@media (max-width: 1198px) {
    .smartstickers-hero-section .content h1{
        font-size: 42px;
        line-height: 45px;
    }

    .smartstickers-hero-section .content h1 span {
        font-size: 36px;
        line-height: 44px;
    }

    .smartstickers-hero-section .image-wrapper img{
        width: 100%;
        height: auto;
    }

    .smartstickers-simple-section .image-wrapper img{
        width: 100%;
        height: auto;
    }

    .smartstickers-simple-section .feature-wrapper {
        gap: 50px;
    }

    .smartstickers-simple-section .video-wrapper{
        max-width: 300px;
    }

    .smartstickers-simple-section .circle-bg{
        width: 430px;
        height: 430px;
    }

    .smartstickers-simple-section .video-thumbnail img:first-child{
        width: 300px;
        height: auto;
    }
}

/* <!-- === RESPONSIVE 992PX STARTS HERE === --> */

@media (max-width: 992px) {
	.smartstickers-hero-section {
		padding-top: 107px;
	}
    .smartstickers-hero-section .smartstickers-hero-inner-section{
        padding-top: 0;
    }
    .smartstickers-hero-section .content h1 {
        font-size: 31px;
        line-height: 34px;
    }
    .smartstickers-hero-section .content h1 span {
        font-size: 26px;
        line-height: 34px;
    }
    .smartstickers-hero-section .content {
        padding: 50px 0 60px 0;
    }
    .smartstickers-simple-section {
        padding: 60px 0;
    }
    .smartstickers-simple-section .content h3{
        margin: 0 0 32px 0;
    }
    .smartstickers-simple-section .feature-wrapper {
        gap: 40px;
    }
    .smartstickers-simple-section .feature-wrapper .feature img {
        width: 70px;
        height: 70px;
    }
    .smartstickers-simple-section .feature-wrapper .feature .text-wrapper h4{
        margin-bottom: 10px;
    }
    .smartstickers-simple-section .video-wrapper{
        max-width: 240px;
    }
    .smartstickers-simple-section .circle-bg{
        width: 330px;
        height: 330px;
    }
    .smartstickers-simple-section .video-thumbnail img:first-child{
        width: 240px;
        height: auto;
    }
    .smartstickers-why-section .smartstickers-why-inner-section {
        padding: 60px 0;
    }
    .smartstickers-why-section .content h2 {
        margin: 0 auto 40px;
    }
    .smartstickers-why-section .ss-cards-wrapper{
        gap: 36px;
    }
    .smartstickers-why-section .ss-card{
        width: calc(50% - 18px);
        height: 390px;
        padding: 10px 15px;
    }
    .smartstickers-why-section .ss-card-1{
        background-size: auto 75%;
        background-color: #FEF6F0;
    }
    .smartstickers-why-section .ss-card-2{
        background-size: auto 75%;
        background-color: #EDF7FF;
    }
    .smartstickers-why-section .ss-card-3{
        background-size: auto 75%;
        background-color: #EDF7FF;

    }
    .smartstickers-why-section .ss-card-4{
        background-size: auto 75%;
        background-color: #FEF6F0;
    }
    .smartstickers-why-section .ss-card .text-content{
        padding-top: 180px;
    }
    .smartstickers-today-section .smartstickers-today-inner-section {
        padding: 60px 0 50px 0;
    }
    .smartstickers-today-section .content h3{
        margin-bottom: 20px;
    }
    .smartstickers-today-section .content p span{
        margin-top: 15px;
    }
    .smartstickers-today-section .content a{
        font-size: 22px;
        line-height: 24px;
    }
    .smartstickers-today-section .image-wrapper img{
        width: 100%;
        height: 100%;
    }
}

/* <!-- === RESPONSIVE ONLY 768px STARTS HERE === --> */

@media (max-width: 768px) {
	.smartstickers-hero-section {
		padding-top: 0px;
	}
}

/* <!-- === RESPONSIVE ONLY 767px STARTS HERE === --> */

@media (max-width: 767px) {
    .smartstickers-hero-section .content {
        padding: 50px 0 30px 0;
    }
    .smartstickers-hero-section .content{
        text-align: center;
    }
    .smartstickers-hero-section .content h1 span{
        display: block;
    }
    .smartstickers-hero-section .image-wrapper img {
        width: 80%;
    }
    .smartstickers-simple-section {
        padding: 50px 0;
    }
    .smartstickers-simple-section .content h3 {
        margin: 0 0 30px 0;
        text-align: center;
    }
    .smartstickers-simple-section .feature-wrapper .feature .text-wrapper{
        max-width: 100%;
    }
    .smartstickers-simple-section .video-wrapper{
        max-width: 240px;
        margin-top: 40px;
    }
    .smartstickers-simple-section .circle-bg{
        width: 380px;
        height: 380px;
    }
    .smartstickers-simple-section .video-thumbnail img:first-child{
        width: 240px;
        height: auto;
    }
    .smartstickers-why-section .smartstickers-why-inner-section {
        padding: 30px 0 50px 0;
    }
    .smartstickers-why-section .ss-cards-wrapper {
        gap: 26px;
    }
    .smartstickers-why-section .ss-card .text-content h4 {
        font-size: 20px;
        line-height: 24px;
        margin-bottom: 10px;
    }
    .smartstickers-why-section .ss-card .text-content p {
        font-size: 16px;
        line-height: 24px;
    }
    .smartstickers-why-section .ss-card{
        width: calc(50% - 13px);
        height: 385px;
    }
    .smartstickers-today-section .smartstickers-today-inner-section {
        padding: 50px 0 50px 0;
    }
    .smartstickers-today-section .content{
        max-width: 100%;
        text-align: center;
    }
    .smartstickers-today-section .image-wrapper{
        text-align: center;
        margin-top: 40px;
    }
    .smartstickers-today-section .image-wrapper img{
        width: 80%;
    }

}

/* <!-- === RESPONSIVE ONLY 575px STARTS HERE === --> */

@media (max-width: 575px) {
    .smartstickers-hero-section .content {
        padding: 35px 0 20px 0;
    }
    .smartstickers-hero-section .content h1{
        margin-bottom: 15px;
    }
    .smartstickers-hero-section .image-wrapper img {
        width: 95%;
    }
    .smartstickers-simple-section {
        padding: 40px 0;
    }
    .smartstickers-simple-section .content h3 {
        font-size: 28px;
        line-height: 32px;
        margin: 0 0 25px 0;
    }
    .smartstickers-simple-section .feature-wrapper {
        gap: 35px;
    }
    .smartstickers-simple-section .video-wrapper{
        max-width: 220px;
        margin-top: 40px;
    }
    .smartstickers-simple-section .circle-bg{
        width: 330px;
        height: 330px;
    }
    .smartstickers-simple-section .video-thumbnail img:first-child{
        width: 220px;
        height: auto;
    }
    .smartstickers-why-section .content h2{
        font-size: 28px;
        line-height: 32px;
        margin: 0 0 30px 0;
    }
    .smartstickers-why-section .ss-card{
        width: 100%;
        height: 340px;
    }
    .smartstickers-why-section .ss-card-1 {
        background-size: auto 85%;
    }
    .smartstickers-why-section .ss-card-2 {
        background-size: auto 85%;
    }
    .smartstickers-why-section .ss-card-3 {
        background-size: auto 85%;
    }
    .smartstickers-why-section .ss-card-4 {
        background-size: auto 85%;
    }
    .smartstickers-today-section .smartstickers-today-inner-section {
        padding: 40px 0 40px 0;
    }
    .smartstickers-today-section .content h3{
        font-size: 28px;
        line-height: 32px;
    }
    .smartstickers-today-section .image-wrapper img{
        width: 95%;
    }

}
